home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Data / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  998 b   |  41 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 1 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef FWRESFIL_K
  7. #include "FWResFil.k"
  8. #endif
  9.  
  10. #ifndef DEFINES_K
  11. #include "Defines.k"
  12. #endif
  13.  
  14. #ifndef FWMENUS_FR
  15. #include "FWMenus.fr"
  16. #endif
  17.  
  18. //========================================================================================
  19. resource FW_kMULTISTRING (kUndoStringsID)
  20. {
  21.     kUndoTalkFasterMsg,    "Undo Faster";
  22.     kRedoTalkFasterMsg,    "Redo Faster";
  23.     kUndoTalkSlowerMsg,    "Undo Slower";
  24.     kRedoTalkSlowerMsg,    "Redo Slower";
  25. }
  26.  
  27. //========================================================================================
  28. resource FW_RMenuBar(kMenuBarID)
  29. {
  30.     {
  31.         FW_RPullDownMenu
  32.         (
  33.             "Data"
  34.             {
  35.                 FW_RTextItem(cFasterCommand, '1', "Faster"),
  36.                 FW_RTextItem(cSlowerCommand, '2', "Slower")
  37.             }
  38.         )
  39.     }
  40. };
  41.